home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / Sources / c / ForcRedraw < prev    next >
Text File  |  1994-08-30  |  450b  |  19 lines

  1. #include <time.h>
  2.  
  3. #include "DeskLib:WimpSWIs.h"
  4.  
  5. #include "Shell.Shell.h"
  6. #include "Shell.ForcRedraw.h"
  7.  
  8.  
  9. void    Shell_ForceRectRedrawAll( Shell_rectblock *r)
  10. {    window_redrawblock block;
  11. r->last_update    = clock();
  12. block.window    = r->window;
  13. block.rect    = (r->plot_icon) ? r->icon.workarearect : r->rect;
  14. Wimp_ForceRedraw( &block);    /* The actual redraw will be done when the Wimp sends     */
  15.                 /* event_REDRAW on the next Shell/Event_Poll.        */
  16. return;
  17. }
  18.  
  19.